Source: Brewer, Designing better maps
Source: ColorBrewer
When building applications, ask yourself: how much detail do I need?
In ArcGIS: look for the “Generalization” toolset in the “Cartography” toolbox
Example: Educational Attainment in America
.html suffix<><!DOCTYPE html>
<html>
<head>
<title>GEOG 40323</title>
</head>
<body>
<h1>GEOG 40323: Urban & Business GIS</h1>
<p>What a great class!</p>
</body>
</html>Let’s try it out!
<style> tagsbody {
background-color: navy;
color: yellow;
}
h1 {
color: orange;
font-family: Courier;
}Let’s try it out!
// Variables (declared with 'var')
var x = 5;
// Arrays
var vals = [1, 2, 3, 4]
// Objects
var course = {
num: "GEOG 40323"
name: "Urban & Business GIS"
}{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"Name": "TCU",
"Description": "Our favorite university!"
},
"geometry": {
"type": "Point",
"coordinates": [
-97.36283540725708,
32.70969028343882
]
}
}
]
}